home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / dom / nsIDOMSVGURIReference.h < prev    next >
C/C++ Source or Header  |  2006-05-08  |  2KB  |  92 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIDOMSVGURIReference.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIDOMSVGURIReference_h__
  6. #define __gen_nsIDOMSVGURIReference_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. class nsIDOMSVGAnimatedString; /* forward declaration */
  18.  
  19.  
  20. /* starting interface:    nsIDOMSVGURIReference */
  21. #define NS_IDOMSVGURIREFERENCE_IID_STR "8092b5f3-dc8a-459c-94f1-92f8011f2438"
  22.  
  23. #define NS_IDOMSVGURIREFERENCE_IID \
  24.   {0x8092b5f3, 0xdc8a, 0x459c, \
  25.     { 0x94, 0xf1, 0x92, 0xf8, 0x01, 0x1f, 0x24, 0x38 }}
  26.  
  27. class NS_NO_VTABLE nsIDOMSVGURIReference : public nsISupports {
  28.  public: 
  29.  
  30.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMSVGURIREFERENCE_IID)
  31.  
  32.   /* readonly attribute nsIDOMSVGAnimatedString href; */
  33.   NS_IMETHOD GetHref(nsIDOMSVGAnimatedString * *aHref) = 0;
  34.  
  35. };
  36.  
  37. /* Use this macro when declaring classes that implement this interface. */
  38. #define NS_DECL_NSIDOMSVGURIREFERENCE \
  39.   NS_IMETHOD GetHref(nsIDOMSVGAnimatedString * *aHref); 
  40.  
  41. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  42. #define NS_FORWARD_NSIDOMSVGURIREFERENCE(_to) \
  43.   NS_IMETHOD GetHref(nsIDOMSVGAnimatedString * *aHref) { return _to GetHref(aHref); } 
  44.  
  45. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  46. #define NS_FORWARD_SAFE_NSIDOMSVGURIREFERENCE(_to) \
  47.   NS_IMETHOD GetHref(nsIDOMSVGAnimatedString * *aHref) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHref(aHref); } 
  48.  
  49. #if 0
  50. /* Use the code below as a template for the implementation class for this interface. */
  51.  
  52. /* Header file */
  53. class nsDOMSVGURIReference : public nsIDOMSVGURIReference
  54. {
  55. public:
  56.   NS_DECL_ISUPPORTS
  57.   NS_DECL_NSIDOMSVGURIREFERENCE
  58.  
  59.   nsDOMSVGURIReference();
  60.  
  61. private:
  62.   ~nsDOMSVGURIReference();
  63.  
  64. protected:
  65.   /* additional members */
  66. };
  67.  
  68. /* Implementation file */
  69. NS_IMPL_ISUPPORTS1(nsDOMSVGURIReference, nsIDOMSVGURIReference)
  70.  
  71. nsDOMSVGURIReference::nsDOMSVGURIReference()
  72. {
  73.   /* member initializers and constructor code */
  74. }
  75.  
  76. nsDOMSVGURIReference::~nsDOMSVGURIReference()
  77. {
  78.   /* destructor code */
  79. }
  80.  
  81. /* readonly attribute nsIDOMSVGAnimatedString href; */
  82. NS_IMETHODIMP nsDOMSVGURIReference::GetHref(nsIDOMSVGAnimatedString * *aHref)
  83. {
  84.     return NS_ERROR_NOT_IMPLEMENTED;
  85. }
  86.  
  87. /* End of implementation class template. */
  88. #endif
  89.  
  90.  
  91. #endif /* __gen_nsIDOMSVGURIReference_h__ */
  92.